/* Tracking Page */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}
.header {
  background: #000;
  color: #fff;
  padding: 30px;
  text-align: center;
  font-size: 30px;
}
.track-form {
  text-align: center;
  margin: 30px auto;
}
.track-form input[type="text"] {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.track-form button {
  padding: 10px 20px;
  background: rgb(0, 0, 0);
  color: white;
  border: none;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
}
.details-box {
  background: white;
  width: 40%;
  margin: 0 auto;
  padding: 20px;
  border: 3px solid #eb1c24;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.details-box label {
  font-weight: bold;
  color: #eb1c24;
  margin: 0px 0px 10px 0px;
}

.p-1 {
  display: grid;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.timeline {
  position: relative;
  margin: 40px 124px;
  width: 39%;
  border: 3px solid #eb1c24;
  border-radius: 16px;
  background: #ffff;
  padding: 20px 30px 10px 40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.timeline-event {
  margin-bottom: 30px;
  position: relative;
}
.timeline-event::before {
  content: "";
  position: absolute;
  left: -49px;
  top: 10px;
  width: 15px;
  height: 15px;
  background: #eb1c24;
  border-radius: 160%;
}
.timeline-event h4 {
  margin-top: 30px;
  color: #000000;
  position: absolute;
  font-weight: 500;
}
.timeline-event p {
  color: #eb1c24;
  font-weight: bold;
  margin-bottom: 70px;
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #000000;
}
.banner-heading {
  color: white;
  display: flex;
  justify-content: center;
  margin-top: 100px;
  font-weight: 300;
  font-size: 40px;
}

.banner-btn {
  background: #eb1c24;
  color: white;
  padding: 20px 40px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 0px 0px 0px 20px;
  position: absolute;
  justify-self: anchor-center;
}

h4.text4 {
  font-size: 24px;
  color: #000;
  border-bottom: 1px solid #eb1c24;
  text-align: center;
}

/* Additional styles for new timeline */
.timeline-row {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.timeline-time {
  width: 60px;
  color: #333;
  font-size: 14px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background-color: #eb1c24;
  border-radius: 50%;
  margin: 4px 15px 0 15px;
  flex-shrink: 0;
}

.timeline-status {
  background: #fff;
  padding: 6px 10px;
  border-left: 3px solid #eb1c24;
  font-size: 12px;
  color: #222;
  max-width: 300px;
  line-height: 20px;
}

.promotion-left,
.promotion-right,
.promotion-right-2 {
  margin: 10px;
  max-width: 20%;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-A1 {
  display: flex;
  padding-left: 5%;
  padding-right: 5%;
  align-items: center;
}

.promotion-left img,
.promotion-right img,
.promotion-right-2 img {
  border-radius: 20px;
}

.main-A2 {
  display: flex;
  padding-left: 5%;
  padding-right: 5%;
  align-items: center;
}

.highlight-status {
  font-weight: bold;
  color: #000000;
  font-size: 16px;
}

.count {
  display: flex;
  justify-content: center;
  gap: 100px;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .banner {
    height: 370px;
  }
  .details-box {
    width: 80% !important;
  }
  .timeline {
    width: 73%;
  }
  .track-form {
    margin: 60px 0px 40px 0px;
  }
  .track-form button {
    margin-top: 20px;
    padding: 20px 60px 20px 60px;
    margin-left: 0;
  }
  .track-form input[type="text"] {
    width: 300px;
    padding: 20px 0px 20px 20px;
  }
  .slide.active h1 {
    font-size: 40px;
    text-align: center;
  }

  .main-A1 {
    display: flex;
    flex-direction: column;
    padding: 0px;
  }

  .promotion-left,
  .promotion-right,
  .promotion-right-2 {
    width: 100%;
    max-width: 100%;
    margin-left: 35px;
  }

  .promotion-left img,
  .promotion-right img,
  .promotion-right-2 img {
    border-radius: 20px;
    max-width: 92%;
  }
  .count {
    display: none;
  }
  .main-A2 {
    display: flex;
    padding-left: 0%;
    padding-right: 0%;
    flex-direction: column;
  }
  .promotion-right-2 {
    display: none;
  }
}
